/* Modern reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    width: 100%;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    backdrop-filter: blur(10px);
}

.profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #1a1a1a;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

p {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links a {
    background: white;
    color: #1a1a1a;
    padding: 14px 20px;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid #eaeaea;
    font-weight: 500;
    transition: all 0.3s ease;
}

.links a:hover {
    transform: translateY(-2px);
    border-color: #c3cfe2;
    background: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        padding: 30px 15px;
    }

    .profile-picture {
        width: 100px;
        height: 100px;
    }

    h1 {
        font-size: 22px;
    }

    p {
        font-size: 15px;
    }

    .links a {
        padding: 12px 16px;
    }
}